home *** CD-ROM | disk | FTP | other *** search
/ Mac Action 1995 December / mac-action-06.iso / Inside Action / A Christmas Story / data / help / help.dir / 00048.ls < prev    next >
Encoding:
Text File  |  1995-05-30  |  1.2 KB  |  54 lines

  1. on exitFrame
  2.   cursor(-1)
  3.   if rollOver(3) then
  4.     set tim to the ticks
  5.     repeat while the ticks < (tim + 10)
  6.     end repeat
  7.     if not rollOver(3) then
  8.       return 
  9.     end if
  10.     set the timeoutScript to EMPTY
  11.     cursor(200)
  12.     go("p1blit")
  13.   else
  14.     if rollOver(4) then
  15.       set tim to the ticks
  16.       repeat while the ticks < (tim + 10)
  17.       end repeat
  18.       if not rollOver(4) then
  19.         return 
  20.       end if
  21.       set the timeoutScript to EMPTY
  22.       cursor(200)
  23.       go("carol")
  24.     else
  25.       if rollOver(5) then
  26.         set tim to the ticks
  27.         repeat while the ticks < (tim + 10)
  28.         end repeat
  29.         if not rollOver(5) then
  30.           return 
  31.         end if
  32.         set the timeoutScript to EMPTY
  33.         cursor(200)
  34.         go("readtm")
  35.       else
  36.         if rollOver(7) then
  37.           set tim to the ticks
  38.           repeat while the ticks < (tim + 10)
  39.           end repeat
  40.           if not rollOver(7) then
  41.             return 
  42.           end if
  43.           set the timeoutScript to EMPTY
  44.           cursor(200)
  45.           go("quit")
  46.         else
  47.           set the timeoutScript to "timeOut1"
  48.         end if
  49.       end if
  50.     end if
  51.   end if
  52.   go("main")
  53. end
  54.